sp-dev-fx-webparts/samples/react-script-editor/tsconfig.json

23 lines
1.4 KiB
JSON
Raw Normal View History

<EFBFBD><EFBFBD>{
2023-09-07 05:17:44 -04:00
"extends": "./node_modules/@microsoft/rush-stack-compiler-4.5/includes/tsconfig-web.json",
"compilerOptions": {
"target": "es5",
"forceConsistentCasingInFileNames": true,
"module": "esnext",
"moduleResolution": "node",
"jsx": "react",
"declaration": true,
"sourceMap": true,
"experimentalDecorators": true,
"skipLibCheck": true,
"outDir": "lib",
"inlineSources": false,
"strictNullChecks": false,
"noUnusedLocals": false,
"typeRoots": ["./node_modules/@types", "./node_modules/@microsoft"],
"types": ["es6-promise", "webpack-env"],
"lib": ["es5", "es2015", "dom", "es2015.collection"]
},
"include": ["src/**/*.ts", "src/**/*.tsx"],
}
2023-03-11 09:00:54 -05:00