Files
DefinitelyTyped/types/mithril/tsconfig.json
fent 7f8ae8fed8 Add mithril jsx types (#39242)
* Add mithril jsx types

* Add mithril fragment

* Add a small test
2019-10-23 14:54:53 -07:00

47 lines
1.1 KiB
JSON

{
"compilerOptions": {
"module": "commonjs",
"lib": [
"es2015",
"dom"
],
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": true,
"strictFunctionTypes": false,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"baseUrl": "../",
"typeRoots": [
"../"
],
"types": [],
"jsx": "preserve",
"jsxFactory": "m"
},
"files": [
"test/test-api.ts",
"test/test-class-component.ts",
"test/test-component.ts",
"test/test-factory-component.ts",
"test/test-fragment.ts",
"test/test-jsonp.ts",
"test/test-misc.ts",
"test/test-request.ts",
"test/test-route.ts",
"test/test-stream.ts",
"test/test-tsx.tsx",
"index.d.ts",
"hyperscript.d.ts",
"mount.d.ts",
"redraw.d.ts",
"render.d.ts",
"request.d.ts",
"route.d.ts",
"stream/index.d.ts"
],
"atom": {
"rewriteTsconfig": false
}
}