databag/net/web/tsconfig.json

17 lines
319 B
JSON
Raw Normal View History

{
"compilerOptions": {
"jsx": "react-jsx",
"target": "es2016",
"module": "commonjs",
"baseUrl": ".",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": false,
"skipLibCheck": true,
"paths": {
"*": ["src/*"]
}
},
"include": ["src", "test"]
}