sp-dev-fx-webparts/samples/vuejs-todo-single-file-comp.../tsconfig.json

39 lines
832 B
JSON
Raw Normal View History

2017-02-03 10:55:11 -05:00
{
"extends": "./node_modules/@microsoft/rush-stack-compiler-3.3/includes/tsconfig-web.json",
2017-02-03 10:55:11 -05:00
"compilerOptions": {
"target": "es5",
"forceConsistentCasingInFileNames": true,
"module": "esnext",
"moduleResolution": "node",
"jsx": "react",
2017-02-03 10:55:11 -05:00
"declaration": true,
"sourceMap": true,
"experimentalDecorators": true,
"skipLibCheck": true,
"outDir": "lib",
"inlineSources": false,
"strictNullChecks": false,
"noUnusedLocals": false,
"typeRoots": [
"./node_modules/@types",
"./node_modules/@microsoft"
],
2017-02-03 10:55:11 -05:00
"types": [
"es6-promise",
2017-02-03 10:55:11 -05:00
"webpack-env"
],
"lib": [
"es5",
"dom",
"es2015.collection"
2017-02-03 10:55:11 -05:00
]
},
"include": [
"src/**/*.ts", "src/webparts/themed/index.tsx"
],
"exclude": [
"node_modules",
"lib"
]
}