1.0.4 • Published 3 years ago

@supportclass/tsconfig-nodecg-client v1.0.4

Weekly downloads
1
License
MIT
Repository
github
Last release
3 years ago

Support Class' tsconfigs

Our re-usable TypeScript compiler configurations.

Usage

  1. Install the config(s) you wish to use as devDependencies:

    npm i -D @supportclass/tsconfig-base
    npm i -D @supportclass/tsconfig-nodecg-server
    npm i -D @supportclass/tsconfig-nodecg-client
  2. Copy this boilerplate and save it as your project's tsconfig.json.

    {
        // Can also be tsconfig-nodecg-server or tsconfig-nodecg-client
        "extends": "@supportclass/tsconfig-base",
        
        "compilerOptions": {
            "rootDir": "src",
            "outDir": "dist",
            "baseUrl": "./",
            "paths": {
                "*": [
                    "./node_modules/*",
                    "./src/types/*"
                ]
            }
        },
        "include": ["src/**/*.ts"],
        "exclude": ["src/**/*spec.ts"]
    }
  3. Modify the boilerplate as-needed to fit your project's structure and unique needs.

Additional Boilerplate

Polymer 2

Polymer 2 projects may also need this additional boilerplate configuration added to their tsconfig.json:

{
	"include": [
		"../../types/browser.d.ts",
		"bower_components/**/*.d.ts",
		"dashboard/**/*.ts",
		"graphics/**/*.ts",
		"shared/**/*.ts"
	]
}