DefinitelyTyped/types/codeflask/tsconfig.json
Joachim Blaafjell Holwech ea40bbb6b2 Added typings for CodeFlask (#39913)
* Added typings for CodeFlask

* Updated to match with Prismjs
2019-11-01 15:11:48 -07:00

25 lines
509 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"lib": [
"es5",
"dom"
],
"noImplicitAny": true,
"noImplicitThis": true,
"strictFunctionTypes": true,
"strictNullChecks": true,
"baseUrl": "../",
"typeRoots": [
"../"
],
"types": [],
"noEmit": true,
"forceConsistentCasingInFileNames": true
},
"files": [
"index.d.ts",
"codeflask-tests.ts"
]
}