Initial commit
This commit is contained in:
28
tsconfig.json
Normal file
28
tsconfig.json
Normal file
@@ -0,0 +1,28 @@
|
||||
{
|
||||
"compilerOptions": {
|
||||
"jsx": "react",
|
||||
"target": "es6",
|
||||
"module": "esnext",
|
||||
"moduleResolution": "node",
|
||||
"sourceMap": true,
|
||||
"emitDecoratorMetadata": true,
|
||||
"experimentalDecorators": true,
|
||||
"removeComments": false,
|
||||
"noImplicitAny": false,
|
||||
"suppressImplicitAnyIndexErrors": true,
|
||||
"outDir": "target/classes/static/app",
|
||||
"lib": ["es2015", "es2017", "dom"],
|
||||
"types": ["webpack-env", "jest"],
|
||||
"allowJs": true,
|
||||
"checkJs": false,
|
||||
"baseUrl": "./",
|
||||
"paths": {
|
||||
"app/*": ["src/main/webapp/app/*"]
|
||||
},
|
||||
"importHelpers": true,
|
||||
"esModuleInterop": true,
|
||||
"allowSyntheticDefaultImports": true
|
||||
},
|
||||
"include": ["src/main/webapp/app", "src/test/javascript/spec"],
|
||||
"exclude": ["node_modules"]
|
||||
}
|
||||
Reference in New Issue
Block a user